blob: fc41e889ee7f6a3d49876c3ac8ab43ffe55489c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
.dramaInfoContainer {
display: flex;
flex-direction: column;
}
.dramaInfo {
display: flex;
flex-direction: column;
width: 95%;
margin: 0px auto;
}
.titleContainer {
display: flex;
justify-content: space-between;
align-items: center;
}
.titleContainer p {
color: var(--neon-green);
width: 60%;
font-family: "Quicksand";
font-weight: 900;
font-size: 24px;
}
.titleContainer img {
border-radius: 10px;
}
.animeDescription {
color: #ffffff81;
font-family: "Atkinson Hyperlegible";
font-size: 16px;
max-height: 120px;
margin: 20px auto;
text-align: center;
overflow-y: auto;
}
.buttonContainer {
margin: 5px auto;
text-align: center;
max-height: 200px;
overflow-y: auto;
}
.buttonContainer button:focus {
opacity: 0.7;
transition: transform 0.2s linear;
background-color: var(--pastel-red);
transform: scale(0.9);
}
.buttonContainer::-webkit-scrollbar {
width: 5px;
}
.buttonContainer::-webkit-scrollbar-thumb {
background-color: var(--soft-purple);
border-radius: 5px;
}
.dramaButton {
padding: 8px;
font-family: "Quicksand";
font-size: 16px;
margin: 5px;
width: 130px;
border-radius: 5px;
border: none;
background-color: #f8f6e3dc;
cursor: pointer;
}
.dramaButton:hover {
background-color: #97E7E1;
}
.infoPageContainer {
display: flex;
height: 100dvh;
justify-content: center;
align-items: center;
}
.infoPageContainer p {
color: white;
}
.animeDetails {
text-align: center;
color: white;
font-family: "Quicksand";
}
.genreEntries {
margin: 3px;
padding: 4px;
border-radius: 5px;
color: var(--neon-green);
background-color: #303030;
cursor: pointer;
}
.animeType span {
color: var(--light-green);
}
.animeRelease span {
color: var(--soft-purple)
}
@media screen and (max-width: 768px) {
.dramaButton {
font-size: 14px;
width: 100px;
}
.animeDetails {
font-size: 14px;
}
}
|